projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a9f1289
)
recent manager: Drop an unused field
author
Matthias Clasen
<mclasen@redhat.com>
Thu, 30 Nov 2017 12:03:20 +0000
(07:03 -0500)
committer
Matthias Clasen
<mclasen@redhat.com>
Thu, 30 Nov 2017 12:03:20 +0000
(07:03 -0500)
gtk/gtkrecentmanager.c
patch
|
blob
|
history
diff --git
a/gtk/gtkrecentmanager.c
b/gtk/gtkrecentmanager.c
index 6ebebf3ea96fbbaa13a77084658d1b32657e64e9..b241ba251fe5ef9a36524347de5296ec1df262e5 100644
(file)
--- a/
gtk/gtkrecentmanager.c
+++ b/
gtk/gtkrecentmanager.c
@@
-102,7
+102,6
@@
#include "gtkrecentmanager.h"
#include "gtkintl.h"
#include "gtksettings.h"
-#include "gtkicontheme.h"
#include "gtktypebuiltins.h"
#include "gtkprivate.h"
#include "gtkmarshalers.h"
@@
-160,8
+159,6
@@
struct _GtkRecentInfo
gboolean is_private;
- GdkPixbuf *icon;
-
gint ref_count;
};
@@
-1548,9
+1545,6
@@
gtk_recent_info_free (GtkRecentInfo *recent_info)
g_slist_free_full (recent_info->groups, g_free);
- if (recent_info->icon)
- g_object_unref (recent_info->icon);
-
g_free (recent_info);
}